    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Montserrat, Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #010B25;
      color: #ffffff;
    }
    
    .container {
      text-align: center;
      max-width: 720px;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 30px;
	line-height: 30px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex: 1;
    }

    .social-icons a {
      color: #fff;
      width: 2em;
      height: 2em;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.1);
    }

    .footer {
      position: absolute;
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
    }

    .footer img {
      max-width: 10em;
      height: auto;
    }

    .marca-dagua {
      position: absolute;
      top: 0px;
      left: 0px;
    }

    .marca-dagua img {
      width: 33%;
      height: auto;
      opacity: 0.6;
      transform: translateX(-28%) translateY(-5%);
      z-index: 0;
      pointer-events: none;
      filter:blur(0.8px);
    }

    .marca-dagua2 {
      position: absolute;
      width: 33vw;
      height: auto;
      bottom: 0px;
      right: 0px;
      overflow: hidden;
    }

    .marca-dagua2 img {
      width: 100%;
      height: auto;
      opacity: 0.6;
      transform: translateX(28%) translateY(5%);
      z-index: 0;
      pointer-events: none;
      filter:blur(0.8px);
    }